home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / Gate_End.c < prev    next >
C/C++ Source or Header  |  1992-06-05  |  1KB  |  49 lines

  1. /* 
  2.  * Gate_End.c --
  3.  *
  4.  *    Source code for the Gate_End library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/gate/RCS/Gate_End.c,v 1.1 92/06/04 22:03:21 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <gate.h>
  22. #include <gateInt.h>
  23.  
  24.  
  25. /*
  26.  *-----------------------------------------------------------------------
  27.  *
  28.  * Gate_End --
  29.  *
  30.  *    Finish using the current gateway database.
  31.  *
  32.  * Results:
  33.  *    None.
  34.  *
  35.  * Side Effects:
  36.  *    The file open to the database is closed.
  37.  *
  38.  *-----------------------------------------------------------------------
  39.  */
  40.  
  41. void
  42. Gate_End()
  43. {
  44.     if (gateFile != (FILE *) NULL) {
  45.     fclose(gateFile);
  46.     gateFile = (FILE *) NULL;
  47.     }
  48. }
  49.